home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / bgfax160.zip / IM229C.TXT < prev    next >
Text File  |  1995-08-12  |  3KB  |  85 lines

  1. --------------------------------------------------------------------------
  2. Setup hints for using Class 2 modems, BGFAX and Intermail 2.29c   07-14-95
  3. B.J. Guillot
  4. FidoNet 1:106/400                         InterNet: bjg90783@jetson.uh.edu
  5. --------------------------------------------------------------------------
  6.  
  7. Keep in mind that fax commands cannot be stored in NVRAM.
  8.  
  9. Here is the relevant information from IMSETUP ...
  10.  
  11. [IMSETUP] Modem -> Advanced Setup -> Command Strings
  12.   Init-1 ... ATZ|
  13.   Init-2 ... AT+FCR=1;+FDCC=1,3,0,2,0,0,0,0|
  14.   Init-3 ... AT+FAA=1;+FLID="713 555 1212"|
  15.  
  16. [IMSETUP] Modem -> Advanced Setup -> Answer Control
  17.   Manual answer    Yes
  18.   Force answer     ATA|
  19.  
  20. NOTE: If you are using a version of IM prior to IM 2.29, the 'force answer'
  21.       field will not have enough room for "AT+FAA=1;A".  On many modems, the
  22.       semicolon on the answer string is option, so "AT+FAA=1A" is okay.
  23.  
  24.   +fcr=1                   enables fax receiption
  25.   +faa=1                   enables adaptive answering
  26.   +flid="713 555 1212"     sets your FAX ID, up to 20 characters
  27.  
  28.   +fdcc=1,5,0,2,0,0,0,0    enable high resolution, 14400, 1D compression
  29.   +fdcc=1,3,0,2,0,0,0,0    enable high resolution, 9600, 1D compression
  30.   +fdcc=1,5,0,2,1,0,0,0    enable high res, 14400, 1D and 2D compression
  31.  
  32. -------------------------------------------------------------------------
  33.  
  34. [IMSETUP] Modem -> Advanced Setup -> Connect Strings
  35.  
  36. You will see a list of 14 or so preconfigured connect strings, press
  37. <INSERT> to add one.  If your modem returns "FAX" on a fax call, like the
  38. Supra, use the first string provided.  If your modem returns "+FCON" on a
  39. fax call, like the PPI FXMT, use the second string.
  40.  
  41.   Connect Message                          Speed  EC  BBSexit  Terminate
  42.  
  43.   FAX                                      19200  N   0        255
  44.   +FCON                                    19200  N   0        255
  45.  
  46. -------------------------------------------------------------------------
  47.  
  48. Notice that "BBSexit" is equal to ZERO.  "Terminate" instructs IM to exit
  49. IMMEDIATELY as it receives the fax response.  ("BBSexit" tells the user
  50. to press <Esc>, and obviously, a fax machine cannot do that.)
  51.  
  52. IMRUN.BAT should contain something similar to ...
  53.  
  54. @echo off
  55. c:
  56. cd\im
  57. im
  58. if errorlevel 255 goto fax
  59. if errorlevel 103 maint.bat
  60. if errorlevel 102 toss.bat
  61. if errorlevel 101 local.bat
  62. if errorlevel 100 dobbs.bat
  63. goto end
  64. :fax
  65.   rem ---1 is for com1, and z is for zfax format
  66.   bgfax /fax c:\bgfax 1 z
  67.   imrun.bat
  68. :end
  69.  
  70. The /fax means your modem reports "FAX".  If it reports "+FCON" use one of
  71. these two lines.
  72.  
  73. bgfax /fast:4 c:\bgfax 1 z
  74.    or
  75. bgfax /fcon c:\bgfax 1 z
  76.  
  77. You will have to experiment to determine which is correct.  See BGFAX.DOC
  78. for a detailed description of the differences between /FAX, /FAST, /FCON.
  79.  
  80. ==========================================================================
  81.  
  82. Regards,
  83. B.J. Guillot
  84.  
  85.